:root {
  --pcWith: 1200px;
  --font10: 10px;
  --font11: 11px;
  --font12: 12px;
  --font13: 13px;
  --font14: 14px;
  --font15: 15px;
  --font16: 16px;
  --font17: 17px;
  --font18: 18px;
  --font19: 19px;
  --font20: 20px;
  --font21: 21px;
  --font22: 22px;
  --font23: 23px;
  --font24: 24px;
  --font25: 25px;
  --font28: 28px;
  --font29: 29px;
  --font30: 30px;
  --font31: 31px;
  --font34: 34px;
  --font50: 50px;
  --font60: 60px;
  --font67: 67px;
  --font70: 70px;
}
@media screen and (max-width: 48rem) {
  :root {
    --pcWith: 7.5rem;
    --font10: 0.18rem;
    --font11: 0.19rem;
    --font12: 0.2rem;
    --font13: 0.21rem;
    --font14: 0.22rem;
    --font15: 0.23rem;
    --font16: 0.24rem;
    --font17: 0.25rem;
    --font18: 0.26rem;
    --font19: 0.27rem;
    --font20: 0.28rem;
    --font21: 0.29rem;
    --font22: 0.3rem;
    --font23: 0.31rem;
    --font24: 0.32rem;
    --font25: 0.33rem;
    --font28: 0.36rem;
    --font29: 0.37rem;
    --font30: 0.38rem;
    --font31: 0.39rem;
    --font34: 0.42rem;
    --font50: 0.5rem;
    --font60: 0.6rem;
    --font67: 0.67rem;
    --font70: 0.7rem;
  }
}
/* 子元素-平均分栏 */
.flex1 {
  /* #ifndef APP-PLUS */
  -webkit-box-flex: 1;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 1;
  /* OLD - Firefox 19- */
  -webkit-flex: 1;
  /* Chrome */
  -ms-flex: 1;
  /* IE 10 */
  /* #endif */
  width: 20%;
  /* For old syntax, otherwise collapses. */
  flex: 1;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.flex2 {
  /* #ifndef APP-PLUS */
  -webkit-box-flex: 2;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 2;
  /* OLD - Firefox 19- */
  -webkit-flex: 2;
  /* Chrome */
  -ms-flex: 2;
  /* IE 10 */
  /* #endif */
  width: 20%;
  /* For old syntax, otherwise collapses. */
  flex: 2;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
/* 父元素-横向排列（主轴） */
.flex-h {
  display: box;
  /* OLD - Android 4.4- */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  /* #ifndef APP-PLUS */
  /* 09版 */
  -webkit-box-orient: horizontal;
  /* 12版 */
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  /* #endif */
  flex-direction: row;
}
/* 父元素-横向换行 */
.flex-hw {
  /* 09版 */
  /*-webkit-box-lines: multiple;*/
  /* 12版 */
  /* #ifndef APP-PLUS */
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  /* #endif */
  flex-wrap: wrap;
}
/* 父元素-水平居中（主轴是横向才生效） */
.flex-hc {
  /* #ifndef APP-PLUS */
  /* 09版 */
  -webkit-box-pack: center;
  /* 12版 */
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  /* #endif */
  justify-content: center;
  /* 其它取值如下：
      align-items     主轴原点方向对齐
      flex-end        主轴延伸方向对齐
      space-between   等间距排列，首尾不留白
      space-around    等间距排列，首尾留白
     */
}
.flex-end {
  justify-content: flex-end;
}
.flex-sa {
  /* #ifndef APP-PLUS */
  /* 12版 */
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  -o-justify-content: space-around;
  /* #endif */
  justify-content: space-around;
}
.flex-sb {
  /* #ifndef APP-PLUS */
  /* 12版 */
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  /* #endif */
  justify-content: space-between;
}
.flex-aic {
  /* #ifndef APP-PLUS */
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  /* #endif */
  align-items: center;
}
/* 父元素-纵向排列（主轴） */
.flex-v {
  display: box;
  /* OLD - Android 4.4- */
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  /* #ifndef APP-PLUS */
  /* 09版 */
  -webkit-box-orient: vertical;
  /* 12版 */
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  /* #endif */
  flex-direction: column;
}
/* 父元素-纵向换行 */
.flex-vw {
  /* #ifndef APP-PLUS */
  /* 09版 */
  /*-webkit-box-lines: multiple;*/
  /* 12版 */
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  /* #endif */
  flex-wrap: wrap;
}
/* 父元素-竖直居中（主轴是横向才生效） */
.flex-vc {
  /* #ifndef APP-PLUS */
  /* 09版 */
  -webkit-box-align: center;
  /* 12版 */
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  /* #endif */
  align-items: center;
}
.flex-grow-1 {
  flex-grow: 1;
}
/* 子元素-显示在从左向右（从上向下）第1个位置，用于改变源文档顺序显示 */
.flex-1 {
  /* #ifndef APP-PLUS */
  -webkit-box-ordinal-group: 1;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-ordinal-group: 1;
  /* OLD - Firefox 19- */
  -ms-flex-order: 1;
  /* TWEENER - IE 10 */
  -webkit-order: 1;
  /* NEW - Chrome */
  /* #endif */
  order: 1;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
/* 子元素-显示在从左向右（从上向下）第2个位置，用于改变源文档顺序显示 */
.flex-2 {
  /* #ifndef APP-PLUS */
  -webkit-box-ordinal-group: 2;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-ordinal-group: 2;
  /* OLD - Firefox 19- */
  -ms-flex-order: 2;
  /* TWEENER - IE 10 */
  -webkit-order: 2;
  /* NEW - Chrome */
  /* #endif */
  order: 2;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
* {
  padding: 0;
  margin: 0;
  vertical-align: middle;
}
@-webkit-keyframes stretchdelay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes stretchdelay {
  0%,
  40%,
  100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  /*margin: 100/100rem auto;*/
  width: 1rem;
  height: 1.2rem;
  text-align: center;
  font-size: 0.1rem;
}
.spinner > div {
  background-color: gold;
  height: 100%;
  width: 0.08rem;
  display: inline-block;
  -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
  animation: stretchdelay 1.2s infinite ease-in-out;
}
.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
ul li {
  list-style-type: none;
}
@font-face {
  font-family: sy;
  src: url('./tp/SourceHanSansCN-Light.otf');
}
body,
html {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background: #FFFFFF;
  overflow: hidden;
  font-size: var(--font20);
  color: white;
  font-family: "sy", "Microsoft YaHei", "PingFang SC", "宋体", "Arial", "黑体", "sans-serif";
}
.bar-view {
  text-align: center;
}
.bar-view .ch {
  font-size: var(--font25);
  color: #333333;
  font-weight: bold;
}
.bar-view .en {
  font-size: var(--font15);
  color: #999999;
}
.bar-view .icon {
  line-height: 0.3rem;
}
.btn-default1 {
  font-size: var(--font14);
  padding: 0.12rem 0.35rem;
  background-color: #cfab58;
  display: inline-block;
}
.hide {
  display: none;
}
.flax {
  display: flex;
}
.point-none {
  pointer-events: none;
}
.op {
  opacity: 0;
}
.rel {
  position: relative;
}
.h100 {
  height: 100%;
}
.w100 {
  width: 100%;
}
.hw100 {
  width: 100%;
  height: 100%;
}
.abs {
  position: absolute;
}
.abs.center {
  margin: 0 auto;
  left: 0;
  right: 0;
}
.abs.top {
  top: 0;
}
.abs.bottom {
  bottom: 0;
}
.abs.left {
  left: 0;
}
.abs.right {
  right: 0;
}
img {
  outline: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  flex-shrink: 0;
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
.loadings {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 3000;
  display: none;
}
.loadings div {
  width: 1.8rem;
  height: 1.8rem;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -0.9rem 0 0 -0.9rem;
  background: url("../img/loading.png") no-repeat center center;
  background-size: contain;
  -webkit-animation: rotate 2s linear 0s infinite;
}
.pnone {
  pointer-events: none;
}
.hint,
.alert-view {
  position: fixed;
  width: 7.4rem;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  display: none;
  z-index: 1;
}
.hint .clickall,
.alert-view .clickall {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hint > div:not(.clickall),
.alert-view > div:not(.clickall) {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
}
.hint .alert,
.alert-view .alert {
  width: 70%;
  height: 3rem;
  border-radius: 0.2rem;
  background: white;
}
.hint .alert .txt,
.alert-view .alert .txt {
  color: black;
  font-size: 0.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2rem;
  width: 100%;
  overflow: hidden;
}
.hint .alert .sure,
.alert-view .alert .sure {
  padding: 0.3rem 0;
  color: black;
  font-size: 0.3rem;
  position: absolute;
  bottom: 0;
  border-top: 0.02rem solid #dcdcdc;
  width: 100%;
}
.hint .btnAgain,
.alert-view .btnAgain,
.hint .btnNext,
.alert-view .btnNext,
.hint .btnRightNext,
.alert-view .btnRightNext,
.hint .btnRun,
.alert-view .btnRun {
  bottom: 0.5rem;
}
.xy50 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  visibility: hidden;
}
i,
em {
  font-style: normal;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.container {
  position: relative;
  min-width: var(--pcWith);
  overflow-y: auto;
  height: 100%;
}
.header-box {
  height: 1.04rem;
  width: 100%;
  position: absolute;
  top: 0;
  background-color: rgba(70, 106, 166, 0.5);
  z-index: 2;
}
.header-box .header {
  width: var(--pcWith);
  margin: 0 auto;
  color: white;
  font-size: var(--font13);
}
.header-box .header .header-logo {
  margin-right: 1rem;
}
.header-box .header .mobile-nav-btn {
  display: none;
  width: 0.4rem;
  height: 0.2rem;
  position: relative;
  margin-top: -0.05rem;
}
.header-box .header .mobile-nav-btn .line {
  width: 100%;
  height: 0.05rem;
  background: #FFF;
  position: absolute;
  left: 0;
  top: 62%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.header-box .header .mobile-nav-btn.open:before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header-box .header .mobile-nav-btn.open:after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header-box .header .mobile-nav-btn.open .line {
  opacity: 0;
}
.header-box .header .mobile-nav-btn:before {
  content: "";
  display: block;
  width: 100%;
  height: 0.05rem;
  background: #FFFF;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.header-box .header .mobile-nav-btn:after {
  content: "";
  display: block;
  width: 100%;
  height: 0.05rem;
  background: #FFF;
  position: absolute;
  left: 0;
  top: 100%;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.header-box .header .nav-item {
  flex-grow: 1;
  text-align: center;
  height: 1.04rem;
}
.header-box .header .nav-item.selected,
.header-box .header .nav-item:hover {
  background-image: linear-gradient(to bottom, #637792, #b59e66);
}
.header-box .header a:not(.logo) {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  -webkit-align-items: center;
  color: white;
  font-size: var(--font16);
}
.header-box .header .nav-box {
  flex-grow: 1;
}
.header-box .header .lang {
  border-left: 0.01rem solid white;
  padding-left: 0.3rem;
  height: 0.58rem;
  position: relative;
}
.header-box .mobile-nav-group {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 1.01rem;
  background: rgba(0, 0, 0, 0.7);
  -webkit-animation: fadeIn 0.3s linear 0s both;
  z-index: 1000;
}
.header-box .mobile-nav-group .mobile-nav-box {
  width: 3rem;
  height: 100vh;
  position: absolute;
  right: 0;
  top: 0;
  background: #fff;
  box-shadow: 0 0 10px 1px rgba(7, 17, 27, 0.1);
  padding-top: 0.3rem;
  -webkit-animation: slideInRight 0.3s linear 0s both;
}
.header-box .mobile-nav-group .mobile-nav-box .mobile-nav-item {
  margin: 0.5rem 0;
  font-size: 0.32rem;
  color: #808080;
  line-height: 0.2rem;
  padding-bottom: 0.08rem;
  text-align: center;
}
.header-box .mobile-nav-group .mobile-nav-box .mobile-nav-item a {
  color: #808080;
}
.header-box .mobile-nav-group .mobile-nav-box .mobile-nav-item.selected {
  color: #ff6600;
  position: relative;
}
.header-box .mobile-nav-group .mobile-nav-box .mobile-nav-item.selected:after {
  content: "";
  display: block;
  width: 1rem;
  height: 0.02rem;
  background: #ff6600;
  position: absolute;
  left: 50%;
  top: 100%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.footer {
  position: relative;
  z-index: 1;
  background-color: #232323;
  padding: 0.5rem 0;
  color: #b3b3b3;
}
.footer a {
  color: #b3b3b3;
}
.footer .mid {
  width: var(--pcWith);
  margin: 0 auto;
}
.footer .mid .nav-view {
  padding-bottom: 0.4rem;
  border-bottom: 0.01rem dotted #b3b3b3;
}
.footer .mid .nav-box {
  flex-grow: 1;
  margin-left: 1.6rem;
}
.footer .mid .nav-item {
  font-size: var(--font13);
}
.footer .mid .company-view {
  padding: 0.3rem 0;
  border-bottom: 0.01rem dotted #b3b3b3;
}
.footer .mid .company-view li:not(:last-child) {
  margin-bottom: 0.3rem;
}
.footer .mid .company-view li .icon {
  margin-right: 0.2rem;
}
.footer .mid .company-view li .title {
  font-size: var(--font15);
}
.footer .mid .company-view li .detail {
  margin-top: 0.05rem;
  font-size: var(--font13);
}
.footer .mid .company-view .about-us {
  cursor: pointer;
  font-size: var(--font13);
  padding: 0.05rem 0.3rem;
  border: 0.01rem solid #b3b3b3;
}
.footer .mid .company-view .tel-txt {
  font-size: var(--font15);
}
.footer .mid .company-view .tel {
  font-size: var(--font18);
}
.footer .mid .copy-right {
  font-size: var(--font12);
  margin-top: 0.3rem;
}
.footer .mid .copy-right > div:first-child {
  margin-right: 0.3rem;
}
@media screen and (max-width: 48rem) {
  .header-logo {
    margin-right: 1.5rem !important;
    width: 3rem;
  }
  .mobile-lang {
    display: block;
    font-size: 0.35rem;
  }
  .container {
    overflow-x: hidden;
  }
  .nav-box {
    display: none;
  }
  .header-box {
    box-sizing: border-box;
    padding: 0 0.2rem;
  }
  .header-box .header a {
    font-size: 0.25rem;
  }
  .mobile-nav-btn {
    display: block !important;
  }
  .footer .mid {
    width: 100%;
    padding: 0 0.2rem;
    box-sizing: border-box;
  }
  .footer .copy-right {
    display: block;
  }
  .footer .about-us {
    width: 2rem;
    text-align: center;
    padding: 0.1rem 0 !important;
    margin-left: 0.3rem;
    display: inline-block;
  }
}
.file-list {
  background: #eceff6;
  padding-bottom: 0.8rem;
}
.file-list .mid {
  width: var(--pcWith);
  margin: 0 auto;
}
.file-list .bar-view {
  padding: 0.3rem 0 0.6rem 0;
}
.file-list .nav-view {
  font-size: var(--font15);
  color: #333333;
  cursor: pointer;
}
.file-list .nav-view a:not(:last-child) {
  margin-right: 0.1rem;
}
.file-list .nav-view li {
  position: relative;
  text-align: center;
  color: #999999;
  padding: 0.05rem 0.15rem;
  background-color: white;
}
.file-list .nav-view li.selected {
  background-color: #4163a4;
  color: white;
}
.file-list .list {
  background: white;
  margin: 0.3rem 0;
  border-radius: 0.1rem;
  padding: 0.1rem 0;
  box-sizing: border-box;
  color: #3d3d3d;
}
.file-list .list .th,
.file-list .list .tr {
  padding: 0.2rem 0.2rem;
  box-sizing: border-box;
  border-bottom: 0.02rem solid #f2f2f2;
  text-align: left;
}
.file-list .list .th > div:nth-child(1),
.file-list .list .tr > div:nth-child(1) {
  width: 60%;
  padding-right: 0.3rem;
  box-sizing: border-box;
}
.file-list .list .th > div:nth-child(2),
.file-list .list .tr > div:nth-child(2) {
  width: 20%;
}
.file-list .list .th > div:nth-child(3),
.file-list .list .tr > div:nth-child(3) {
  width: 20%;
}
.file-list .pagination {
  padding: 0.2rem 0.2rem;
  box-sizing: border-box;
}
.file-list .swiper-wrapper {
  height: auto;
}
.file-list .swiper-button-prev,
.file-list .swiper-button-next {
  width: 0.35rem;
  height: 0.29rem;
  border: 0.02rem solid #d3dbea;
  color: #d3dbea;
  margin-top: 0;
}
.file-list .swiper-button-prev:after,
.file-list .swiper-button-next:after {
  font-size: var(--font20);
}
.file-list .swiper-button-prev,
.file-list .swiper-button-next,
.file-list .swiper-pagination {
  position: relative;
}
.file-list .swiper-pagination {
  display: inline-block;
  width: auto !important;
  bottom: 0 !important;
  margin: 0 0.3rem;
}
.file-list .swiper-pagination .swiper-pagination-bullet {
  background-color: #d3dbea;
  opacity: 1;
}
.file-list .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #4163a4;
  width: 0.31rem;
  border-radius: 0.1rem;
}
.home-banner-view {
  position: relative;
  color: white;
  overflow: hidden;
}
@media screen and (max-width: 48rem) {
  .home-banner-view .home-video {
    width: 130%;
  }
}
.home-banner-view .banner-view {
  top: 1.04rem;
  box-sizing: border-box;
  height: calc(100% - 1.04rem);
}
.home-banner-view .banner-view a {
  color: white;
}
.home-banner-view .banner-view .title {
  font-size: var(--font50);
}
@media screen and (max-width: 48rem) {
  .home-banner-view .banner-view .title {
    font-size: var(--font28);
  }
}
.home-banner-view .banner-view .about {
  font-size: var(--font18);
  padding: 0.41rem 0;
}
@media screen and (max-width: 48rem) {
  .home-banner-view .banner-view .about {
    width: 80%;
    font-size: var(--font11);
  }
}
.aboutTr {
  margin: 0.9rem auto 0.64rem;
}
@media screen and (max-width: 48rem) {
  .aboutTr {
    margin: 0.4rem auto 0.64rem;
  }
}
.about-view .mid,
.business-view .mid,
.news-view .mid,
.contact-us-view .mid,
.party-view .mid,
.feedback-view .mid {
  width: var(--pcWith);
  margin: 0 auto;
}
.about-view {
  position: relative;
  width: 100%;
  height: 5.25rem;
}
.about-view .img-view {
  text-align: center;
  font-size: var(--font12);
}
.about-view .img-view .f {
  margin-bottom: 0.1rem;
}
.about-view .img-view b {
  font-size: var(--font28);
  vertical-align: baseline;
}
.about-view .img-view .line {
  margin: 0.1rem 0.2rem 0;
  font-size: var(--font18);
}
.about-view a {
  color: white;
}
.about-view .btm {
  width: 100%;
  position: absolute;
  bottom: 0;
  background-color: #4163a4;
  height: 3.25rem;
}
.about-view .l,
.about-view .m,
.about-view .r,
.about-view .mid {
  height: 100%;
  box-sizing: border-box;
}
.about-view .l {
  width: 5rem;
  color: white;
  padding-top: 0.29rem;
  box-sizing: border-box;
}
.about-view .l .about-img {
  top: -0.7rem;
}
.about-view .l .title {
  font-size: var(--font16);
  font-weight: bold;
}
.about-view .l .about-more,
.about-view .l .about-txt {
  font-size: var(--font14);
  line-height: 0.2rem;
}
.about-view .l .about-more text,
.about-view .l .about-txt text {
  margin-right: 0.03rem;
}
.about-view .l .about-txt {
  text-align: justify;
  margin: 0.2rem 0;
}
.about-view .l .about-txt.en {
  margin: 0.1rem 0;
}
.about-view .m {
  width: 7rem;
  position: relative;
  padding: 0 0.4rem;
  box-sizing: border-box;
}
.about-view .m .swiper {
  position: absolute;
  bottom: 0.3rem;
  width: 5.97rem;
  height: 4.83rem;
  text-align: center;
}
.about-view .r {
  padding: 0.9rem 0;
  box-sizing: border-box;
}
.feedback-view .mid {
  margin-top: 0.6rem;
}
.feedback-view .list ul {
  margin-top: 0.3rem;
}
.feedback-view .list ul a {
  color: black;
}
.feedback-view .list ul a:not(:nth-child(3)) {
  margin-right: 0.3rem;
}
.feedback-view .list ul li {
  margin-bottom: 0.3rem;
  padding: 0.3rem;
  font-size: var(--font12);
  width: 3.8rem;
  box-sizing: border-box;
  border: 1px solid #dbdbdb;
}
.feedback-view .list ul li:hover {
  border: 1px solid #7a91bf;
}
.feedback-view .list ul li > div:not(:last-child) {
  margin-bottom: 0.1rem;
}
.feedback-view .list ul li .title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.feedback-view .list ul li .line > div {
  width: 17%;
  border-bottom: 0.01rem solid #999999;
}
.feedback-view .list ul li .date {
  font-size: var(--font23);
}
.feedback-view .list ul li .remark {
  color: #666666;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.party-view {
  position: relative;
  background-image: url("../../img/tp/party-5.png");
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
.party-view .mid {
  margin-top: 0.6rem;
  padding-bottom: 2.8rem;
}
.party-view .party-img {
  margin-top: -0.5rem;
}
.party-view .party-img img {
  flex-shrink: 0;
  margin-bottom: 0.2rem;
}
.party-view .party-txt {
  text-align: justify;
  margin-right: 1rem;
  width: 7.7rem;
  color: black;
  font-size: var(--font20);
}
.party-view .p-view.txt {
  margin-top: 0.2rem;
  text-align: justify;
  color: black;
  font-size: var(--font20);
}
.business-view {
  width: 100%;
  box-sizing: border-box;
  padding: 1.25rem 0 0.9rem 0;
  background-image: url("../../img/tp/home-item2-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.business-view .business-swiper-button-prev,
.business-view .business-swiper-button-next {
  display: none !important;
}
.business-view .mid-view {
  width: var(--pcWith);
  height: max-content;
}
.business-view .nav-view,
.business-view .mobile {
  font-size: var(--font15);
  color: #333333;
}
.business-view .nav-view li,
.business-view .mobile li {
  position: relative;
  padding: 0 0.4rem;
  margin-bottom: 0.34rem;
}
.business-view .nav-view li:after,
.business-view .mobile li:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -0.2rem;
  width: 20%;
  height: 0.01rem;
  background: #333333;
}
.business-view .nav-view li.selected,
.business-view .mobile li.selected {
  color: #4163a4;
}
.business-view .nav-view li.selected:after,
.business-view .mobile li.selected:after {
  background: #a86f56;
}
.business-view .list-group {
  position: relative;
  margin: 0.4rem 0;
  color: white;
  text-align: center;
}
.business-view .list-group li,
.business-view .list-group .item {
  overflow: hidden;
  position: relative;
}
.business-view .list-group li text,
.business-view .list-group .item text,
.business-view .list-group li .more-view,
.business-view .list-group .item .more-view {
  display: none;
}
.business-view .list-group li a,
.business-view .list-group .item a {
  color: white;
}
.business-view .list-group li.item:hover > div,
.business-view .list-group .item.item:hover > div {
  background: rgba(62, 89, 136, 0.8);
}
.business-view .list-group li.item:hover .more,
.business-view .list-group .item.item:hover .more {
  display: none;
}
.business-view .list-group li.item:hover .more-view,
.business-view .list-group .item.item:hover .more-view {
  cursor: pointer;
}
.business-view .list-group li.item:hover text,
.business-view .list-group .item.item:hover text,
.business-view .list-group li.item:hover .more-view,
.business-view .list-group .item.item:hover .more-view {
  display: block;
}
.business-view .list-group li .ch,
.business-view .list-group .item .ch {
  font-size: var(--font18);
}
.business-view .list-group li .en,
.business-view .list-group .item .en {
  font-size: var(--font13);
  margin-bottom: 0.2rem;
}
.business-view .list-group li .product,
.business-view .list-group .item .product {
  padding: 0.5rem;
  box-sizing: border-box;
}
.business-view .list-group li .product .pic,
.business-view .list-group .item .product .pic {
  margin-bottom: 0.2rem;
  height: 0.5rem;
}
@media screen and (max-width: 48rem) {
  .business-view .list-group li .product .pic,
  .business-view .list-group .item .product .pic {
    height: 1.3rem;
    padding-top: 0.5rem;
    box-sizing: border-box;
  }
}
.business-view .list-group li .about,
.business-view .list-group .item .about {
  font-size: var(--font12);
  height: 1.7rem;
}
.business-view .list-group li .more-view,
.business-view .list-group .item .more-view {
  font-size: var(--font13);
  padding: 0.15rem 0.4rem;
  border: 0.01rem solid white;
}
.business-view .list-group li .more,
.business-view .list-group .item .more {
  font-size: var(--font23);
  margin-top: 0.07rem;
}
.business-view .list-group .businessSwiper .item > div {
  background: rgba(62, 89, 136, 0.8);
}
.business-view .list-group .businessSwiper .item .more {
  display: none;
}
.business-view .list-group .businessSwiper .item text,
.business-view .list-group .businessSwiper .item .more-view {
  display: block;
}
.news-view {
  width: 100%;
  height: 8.36rem;
  background-image: url("../../img/tp/home-item3-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.news-view .newsTr {
  padding: 0.7rem 0;
  box-sizing: border-box;
}
.news-view .newsTr div {
  color: white;
}
.news-view .news-detail a {
  color: white;
}
.news-view .news-detail .l {
  width: 2.65rem;
  margin-right: 0.8rem;
  justify-content: flex-end;
}
.news-view .news-detail .l ul li {
  position: relative;
  font-size: var(--font15);
  color: white;
  margin-bottom: 0.28rem;
  cursor: pointer;
}
.news-view .news-detail .l ul li.selected {
  color: #e6c987;
}
.news-view .news-detail .l ul li.selected:after {
  position: absolute;
  bottom: -0.05rem;
  content: "";
  left: 0;
  height: 0.02rem;
  background: #e6c987;
  width: 0.6rem;
}
.news-view .news-detail .l .news-more {
  padding: 1rem 0 0.2rem 0;
  border-bottom: 0.02rem solid #e6c987;
  font-size: var(--font12);
}
.news-view .news-detail .l .news-more > div {
  cursor: pointer;
}
.news-view .news-detail .l .news-more img {
  margin-left: 0.05rem;
}
.news-view .news-detail .r {
  flex-grow: 1;
  width: 8.2rem;
}
.news-view .news-detail .r a:not(:nth-last-child(-n+2)) {
  margin-bottom: 0.2rem;
}
@media screen and (max-width: 48rem) {
  .news-view .news-detail .r a {
    margin-bottom: 0.2rem;
  }
}
.news-view .news-detail .r li {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.6);
  padding: 0.34rem;
  width: 4rem;
  box-sizing: border-box;
  color: black;
}
.news-view .news-detail .r li .dateTime {
  width: 0.55rem;
  margin-right: 0.3rem;
}
.news-view .news-detail .r li .line > div {
  width: 100%;
  border-bottom: 0.01rem solid #999999;
}
.news-view .news-detail .r li .date {
  font-size: var(--font20);
  font-weight: bold;
}
.news-view .news-detail .r li .year {
  font-size: var(--font18);
  color: #666666;
}
.news-view .news-detail .r li .title,
.news-view .news-detail .r li .about {
  width: 2.5rem;
  line-height: 0.25rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-view .news-detail .r li .about {
  margin-top: 0.1rem;
  line-height: 0.2rem;
}
.news-view .news-detail .r li .title {
  font-size: var(--font15);
  height: 0.5rem;
}
@media screen and (max-width: 48rem) {
  .news-view .news-detail .r li .title {
    height: 0.65rem;
  }
}
.news-view .news-detail .r li .about {
  font-size: var(--font10);
  color: #666666;
}
.contact-us-view .yw-view {
  width: 10rem;
  margin: 0 auto;
}
.contact-us-view .yw-view li .icon {
  margin-right: 0.2rem;
}
.contact-us-view .yw-view li .title {
  font-size: var(--font13);
  color: #333333;
}
.contact-us-view .yw-view li .detail {
  margin-top: 0.05rem;
  font-size: var(--font11);
  color: #7e9293;
}
.contact-us-view .form-view {
  width: 12rem;
  margin: 0.4rem auto;
  padding: 0.4rem 1.2rem;
  box-shadow: 0.2rem 0.2rem 0.5rem 0.2rem #e8e8e8;
  box-sizing: border-box;
}
.contact-us-view .form-view .captcha img {
  cursor: pointer;
}
.contact-us-view .form-view .title {
  font-size: var(--font20);
  line-height: 0.2rem;
  color: #333333;
  padding-left: 0.15rem;
  box-sizing: border-box;
  border-left: 0.04rem solid black;
  margin-bottom: 0.3rem;
}
.contact-us-view .form-view .captcha {
  margin-top: 0.1rem;
}
.contact-us-view .form-view .captcha img {
  height: 0.42rem;
}
.contact-us-view .form-view .input,
.contact-us-view .form-view .textarea {
  border: 0.01rem solid #e8e8e8;
  padding: 0.13rem;
  font-size: var(--font12);
  box-sizing: border-box;
}
.contact-us-view .form-view .textarea {
  margin-top: 0.1rem;
  height: 2.18rem;
  resize: none;
}
.contact-us-view .form-view .formBtn {
  cursor: pointer;
  margin: 0.3rem 0;
  display: inline-block;
  background-color: #cfab58;
  padding: 0.1rem 0.5rem;
  font-size: var(--font20);
}
.contact-us-view .form-view .formBtn img {
  margin-left: 0.05rem;
}
@media screen and (max-width: 48rem) {
  .pc {
    display: none;
  }
  .mobile {
    display: block;
  }
  .about-txt {
    line-height: 0.35rem !important;
  }
  .about-view {
    height: auto;
    margin-top: 1.4rem;
  }
  .about-view .about-img {
    top: -1.2rem !important;
  }
  .about-view .btm {
    height: auto;
    position: relative;
  }
  .about-view .btm .mid {
    height: max-content;
    display: block;
  }
  .about-view .btm .mid .l,
  .about-view .btm .mid .m,
  .about-view .btm .mid .r {
    width: 100%;
    padding: 0.2rem;
  }
  .about-view .btm .mid .m {
    margin: 0.1rem 0;
  }
  .about-view .btm .mid .m .swiper {
    position: relative;
    bottom: 0;
    width: 100%;
  }
  .about-view .btm .mid .r {
    padding-bottom: 0.5rem;
    flex-direction: row;
  }
  .about-view .btm .mid .r > div:first-child img {
    -webkit-transform: rotate(-90deg);
  }
  .about-view .btm .mid .r > div:last-child img {
    -webkit-transform: rotate(-90deg);
  }
  .business-view {
    padding: 0.5rem 0;
  }
  .business-view .business-swiper-button-prev,
  .business-view .business-swiper-button-next {
    display: block !important;
  }
  .business-view .nav-bar-view {
    padding: 0 0.2rem;
  }
  .business-view .list-group .businessSwiper {
    display: block;
    width: 76%;
  }
  .business-view .list-group .businessSwiper .item > div {
    background: none;
  }
  .business-view .list-group .businessSwiper .item .more {
    display: block;
  }
  .business-view .list-group .item:hover > div {
    background: transparent !important;
  }
  .business-view .list-group .item .about {
    height: 5rem;
  }
  .business-view .mobile {
    padding: 0.3rem 0.3rem 0.3rem 0;
    box-sizing: border-box;
    display: block;
    color: black;
  }
  .feedback-view {
    padding: 0.5rem 0.2rem;
    box-sizing: border-box;
    height: auto;
  }
  .feedback-view .mid {
    width: 100%;
  }
  .feedback-view a {
    margin-right: 0 !important;
  }
  .feedback-view .nav-bar-view {
    align-items: center;
    justify-content: center;
  }
  .feedback-view .icon {
    text-align: center !important;
  }
  .feedback-view .list ul li {
    width: 100%;
  }
  .news-view {
    padding: 0.5rem 0.2rem;
    box-sizing: border-box;
    height: auto;
  }
  .news-view .newsTr {
    padding: 0.2rem 0 0.6rem;
  }
  .news-view .mid {
    width: 100%;
  }
  .news-view .news-detail {
    display: block;
  }
  .news-view .news-detail .l,
  .news-view .news-detail .r {
    width: 100%;
  }
  .news-view .news-detail .l .news-more {
    text-align: right;
    padding: 0;
    border-bottom: 0;
    display: inline-block;
  }
  .news-view .news-detail .l ul {
    display: flex;
  }
  .news-view .news-detail .l ul li {
    margin-right: 0.2rem;
  }
  .news-view .news-detail .r {
    margin-top: 0.2rem;
  }
  .news-view .news-detail .r li {
    width: 100%;
  }
  .news-view .news-detail .r li .title,
  .news-view .news-detail .r li .about {
    width: 100%;
    line-height: normal;
  }
  .party-view {
    background: transparent;
  }
  .party-view .mid {
    padding: 0 0.2rem;
    box-sizing: border-box;
  }
  .party-view .t-view {
    display: block;
  }
  .party-view .party-txt {
    padding: 0.4rem 0;
    width: 100%;
  }
  .party-view .party-img {
    height: auto;
    margin-top: 0;
    padding: 0.4rem 0;
  }
  .party-view .party-img div {
    display: inline-block;
  }
  .party-view .party-img img {
    width: 47%;
  }
  .party-view .p-view {
    position: relative;
    margin-top: -1rem;
  }
  .party-view .p-view .txt {
    top: 1.3rem;
    height: 2.1rem;
    left: 0.1rem;
    width: 5.6rem;
    font-size: 0.2rem;
  }
  .party-view .p-view .txt.en {
    font-size: 0.13rem;
    line-height: 0.17rem;
  }
  .party-view .p-view img {
    width: 100%;
  }
  .contact-us-view .captcha img {
    height: 0.5rem;
  }
  .contact-us-view .mid {
    padding: 0 0.2rem;
    box-sizing: border-box;
  }
  .contact-us-view .yw-view {
    width: 100%;
  }
  .contact-us-view .yw-view .pc {
    display: none;
  }
  .contact-us-view .yw-view ul {
    display: block;
  }
  .contact-us-view .yw-view li {
    margin-bottom: 0.5rem;
  }
  .contact-us-view .form-view {
    width: 100%;
    padding: 0.2rem;
  }
}
/*# sourceMappingURL=index.css.map */